home *** CD-ROM | disk | FTP | other *** search
/ 5 Star Games: DOS Edition 2 / 5 Star Games - DOS Edition (1995)(Ready to Run).iso / dbc / db_lsc.c < prev    next >
C/C++ Source or Header  |  1992-02-28  |  38KB  |  525 lines

  1.  
  2. #include "db_lsc.h"
  3.  
  4. /* Special Characters */
  5.  
  6. unsigned char  _dcpt[2];
  7. unsigned char  _thou[2];
  8. unsigned char  datesep[2];
  9. unsigned char  timesep[2];
  10.  
  11. /* Picture Element Constants */
  12.  
  13. unsigned char  Pic_A        = 'A';
  14. unsigned char  Pic_At       = '@';
  15. unsigned char  Pic_B        = 'B';
  16. unsigned char  Pic_Dol      = '$';
  17. unsigned char  Pic_H        = '#';
  18. unsigned char  Pic_L        = 'L';
  19. unsigned char  Pic_Minus    = '-';
  20. unsigned char  Pic_Plus     = '+';
  21. unsigned char  Pic_S        = 'S';
  22. unsigned char  Pic_Star     = '*';
  23. unsigned char  Pic_TL       = '<';
  24. unsigned char  Pic_TR       = '>';
  25. unsigned char  Pic_U        = 'U';
  26. unsigned char  Pic_X        = 'X';
  27. unsigned char  Pic_Z        = 'Z';
  28.  
  29. /* General String Constants */
  30.  
  31. unsigned char  _AM_[]                    = " am";
  32. unsigned char  _ANYKEY[]                 = "ANY KEY";
  33. unsigned char  _BadPath[]                = "*** YOU HAVE SUPPLIED AN INVALID PATH ***";
  34. unsigned char  _BadPic[]                 = "BAD PIC";
  35. unsigned char  _Contains[]               = "CT";
  36. unsigned char  _EqualTo[]                = "EQ";
  37. unsigned char  _EdtHelp[]                = "Esc - Abort, F10 - Accept, F1 - Help";
  38. unsigned char  _GreaterThan[]            = "GT";
  39. unsigned char  _GreaterThanOrEqualTo[]   = "GE";
  40. unsigned char  _LessThan[]               = "LT";
  41. unsigned char  _LessThanOrEqualTo[]      = "LE";
  42. unsigned char  _NoFiles[]                = "*** No Files Found ***";
  43. unsigned char  _NoGlobalSpace[]          = "Unable To Locate/Allocate The Requested Global Variable Space";
  44. unsigned char  _NoneEdited[]             = "No fields may be edited due to Security or Skip conditions";
  45. unsigned char  _NotEqualTo[]             = "NE";
  46. unsigned char  _PicErr[]                 = "ERR";
  47. unsigned char  _PM_[]                    = " pm";
  48. unsigned char  _ShellMsge[]              = "Enter EXIT to leave this DOS Shell and return to the program.";
  49. unsigned char  _StdErrM[]                = "*** Error - Invalid Input ***";
  50. unsigned char  _YesOrNo[]                = "Yes|No ";
  51. unsigned char  _YN[]                     = "(Y/N)";
  52.  
  53. unsigned char  msg_CAPS[]                = "CAPS";
  54. unsigned char  msg_NUM[]                 = " NUM ";
  55. unsigned char  msg_SCROLL[]              = "SCROLL";
  56.  
  57. unsigned char  MthTab[13][10]            = {"Invalid  ",
  58.                                             "January  ",
  59.                                             "February ",
  60.                                             "March    ",
  61.                                             "April    ",
  62.                                             "May      ",
  63.                                             "June     ",
  64.                                             "July     ",
  65.                                             "August   ",
  66.                                             "September",
  67.                                             "October  ",
  68.                                             "November ",
  69.                                             "December "};
  70.  
  71. unsigned char  DayTab[8][10]              = {"Invalid  ",
  72.                                              "Sunday   ",
  73.                                              "Monday   ",
  74.                                              "Tuesday  ",
  75.                                              "Wednesday",
  76.                                              "Thursday ",
  77.                                              "Friday   ",
  78.                                              "Saturday "};
  79.  
  80. /* Dos Error String Constants */
  81.  
  82. unsigned char  DOSErr1[]    = "INVALID DOS FUNCTION CODE";
  83. unsigned char  DOSErr2[]    = "FILE NOT FOUND";
  84. unsigned char  DOSErr3[]    = "PATH NOT FOUND";
  85. unsigned char  DOSErr4[]    = "TOO MANY OPEN FILES";
  86. unsigned char  DOSErr5[]    = "ACCESS DENIED";
  87. unsigned char  DOSErr6[]    = "INVALID HANDLE";
  88. unsigned char  DOSErr8[]    = "NOT ENOUGH MEMORY";
  89. unsigned char  DOSErr10[]   = "INVALID ENVIRONMENT";
  90. unsigned char  DOSErr11[]   = "INVALID FILE FORMAT";
  91. unsigned char  DOSErr12[]   = "INVALID FILE ACCESS CODE";
  92. unsigned char  DOSErr15[]   = "INVALID DRIVE NUMBER";
  93. unsigned char  DOSErr16[]   = "CANNOT REMOVE CURRENT DIRECTORY";
  94. unsigned char  DOSErr17[]   = "CANNOT RENAME ACROSS DRIVES";
  95. unsigned char  DOSErr18[]   = "NO MORE FILES";
  96. unsigned char  DOSErr152[]  = "DRIVE NOT READY";
  97.  
  98. /* General String Constants and Error Messages */
  99.  
  100. unsigned char  DBTErr100[]  = "Disk read error";
  101. unsigned char  DBTErr101[]  = "Disk write error";
  102. unsigned char  DBTErr102[]  = "File not assigned";
  103. unsigned char  DBTErr103[]  = "File not open";
  104. unsigned char  DBTErr104[]  = "File not open for input";
  105. unsigned char  DBTErr105[]  = "File not open for output";
  106. unsigned char  DBTErr106[]  = "Invalid numeric format";
  107. unsigned char  DBTErr200[]  = "Division by zero";
  108. unsigned char  DBTErr201[]  = "Range check error";
  109. unsigned char  DBTErr202[]  = "Stack overflow error";
  110. unsigned char  DBTErr203[]  = "Heap overflow error";
  111. unsigned char  DBTErr204[]  = "Invalid pointer operation";
  112. unsigned char  DBTErr1000[] = "Record size is greater than max record size";
  113. unsigned char  DBTErr1001[] = "Record size is too small";
  114. unsigned char  DBTErr1002[] = "Key length is greater than max key length";
  115. unsigned char  DBTErr1003[] = "Data File created with different record size";
  116. unsigned char  DBTErr1004[] = "Index File created with different key or page size";
  117. unsigned char  DBTErr1005[] = "Not enough memory for page stack";
  118. unsigned char  DBTErr2000[] = "Illegal attempt to alter the STATUS record";
  119.  
  120. unsigned char  LSC_AbortBadPath[]          = "*** You have supplied an invalid path - Program Aborted ***";
  121. unsigned char  LSC_AbortOrContinue[]       = "Enter A to Abort, or C to Continue";
  122. unsigned char  LSC_AbortPrinting[]         = "Abort Print Run (Y/N)?";
  123. unsigned char  LSC_ActionType[]            = "Action Type";
  124. unsigned char  LSC_ActivationLetterPr[]    = "Active Letter & Posn :";
  125. unsigned char  LSC_ActivePrompt[]          = "Active Prompt Color";
  126. unsigned char  LSC_ActiveVideo[]           = "1 .. Active Video";
  127. unsigned char  LSC_AddNameOrSub[]          = " Do you wish to add a name to this menu, or add a new Sub-menu ";
  128. unsigned char  LSC_AllAscii[]              = "Complete ASCII";
  129. unsigned char  LSC_Any2Abort[]             = "Press any key to abort ...";
  130. unsigned char  LSC_AppenOrOverwrite[]      = "Append, Overwrite, Escape (A/O/Esc) ";
  131. unsigned char  LSC_AtErrLine[]             = "  On Line - ";
  132. unsigned char  LSC_AtLine[]                = "In Line";
  133. unsigned char  LSC_AtPosnPr[]              = "At :";
  134. unsigned char  LSC_AvailFiles[]            = "Available Files";
  135. unsigned char  LSC_BadAdjust[]             = "Index file corrupted due to 'ADJUST'.  !! Contact program developer !!";
  136. unsigned char  LSC_BadCodes[]              = "Bad Codes in Printer Setup Details";
  137. unsigned char  LSC_BadDataFile[]           = "Datafile does not exist";
  138. unsigned char  LSC_BadDDFile[]             = ".DD2 Does not exist - Press any key to Continue";
  139. unsigned char  LSC_BadDecrement[]          = "Cannot decrement - use + key to increment";
  140. unsigned char  LSC_BadFieldName[]          = "Invalid Field Name - please re-enter";
  141. unsigned char  LSC_BadFName[]              = "Invalid file name - please re-enter";
  142. unsigned char  LSC_BadKeyFile[]            = "Key file does not exist - re-specify key filename";
  143. unsigned char  LSC_BadLangID[]             = " Not Found in '.LAN' file.  Program Halted !!";
  144. unsigned char  LSC_BadMenu[]               = "Unable To Open Menu";
  145. unsigned char  LSC_BadNumOperator[]        = "Invalid Comparison - use :- LT  GT  EQ  NE  LE  GE  CT";
  146. unsigned char  LSC_BadOpenFilter[]         = "Cannot open Filter Window";
  147. unsigned char  LSC_BadOPTFile[]            = "Incompatible IMPEX.OPT !!  Please Delete It";
  148. unsigned char  LSC_BadOrigFile[]           = "Unable To Open Original Data File";
  149. unsigned char  LSC_BadOutDevice[]          = "Cannot Access Report Output Device, Process Terminated";
  150. unsigned char  LSC_BadRecSize[]            = "Datafile has incorrect record size";
  151. unsigned char  LSC_BadTempFile[]           = "Unable Make Temporary Data File";
  152. unsigned char  LSC_BaseError[]             = "ERROR";
  153. unsigned char  LSC_BasicTemplate[]         = "*****  BASIC SCREEN TEMPLATE  *****";
  154. unsigned char  LSC_BatchCmds[]             = "Batch Commands [Separate with ';']";
  155. unsigned char  LSC_BatchCmdsPr[]           = "Batch Commands      :";
  156. unsigned char  LSC_Big[]                   = "Big";
  157. unsigned char  LSC_BrowseArrows[]          = "Use \x18\x19\x1A\x1B to browse, <Enter> to select";
  158. unsigned char  LSC_CannotCreate[]          = "Cannot Create File";
  159. unsigned char  LSC_CannotDup[]             = "Cannot Add Record with Duplicate Key to This File";
  160. unsigned char  LSC_Change2DirPr[]          = "Change To Directory :";
  161. unsigned char  LSC_ChangeDrives[]          = "To Change Drives - <Ctrl>+<Drive Letter>, F1 - Help";
  162. unsigned char  LSC_ChangePasswordPr[]      = "Change Password (Esc-Abort)";
  163. unsigned char  LSC_ChangeToDir[]           = "Change To Directory";
  164. unsigned char  LSC_ChangeVideoMenu[]       = "Enter 1,2,3 or 4 to change values.  [F1-Help, F10-Accept, or ESC-Abort].";
  165. unsigned char  LSC_Chapter[]               = "Chapter";
  166. unsigned char  LSC_Char[]                  = "Char";
  167. unsigned char  LSC_CharPaint[]             = "Char Paint/Fill";
  168. unsigned char  LSC_Choose[]                = "Choose";
  169. unsigned char  LSC_ChooseAction[]          = "Choose Action";
  170. unsigned char  LSC_ChooseNameOrSub[]       = "Name    |Sub-Menu";
  171. unsigned char  LSC_ChooseYesOrNo[]         = "Yes|No ";
  172. unsigned char  LSC_ClosingFile[]           = "*** Closing Files - Please Wait ***";
  173. unsigned char  LSC_CmdLine[]               = "Command Line";
  174. unsigned char  LSC_CmdLinePr[]             = "Command Line        :";
  175. unsigned char  LSC_ComfirmDel[]            = "Confirm Deletion of Block";
  176. unsigned char  LSC_Complications[]         = "Complications Locking Index -- 'R'etry or 'A'bort Program [R/A]";
  177. unsigned char  LSC_ConfirmDel[]            = "Confirm Deletion [Y/N]";
  178. unsigned char  LSC_ConfirmDelRec[]         = "Confirm Deletion of This Record [Y/Esc]";
  179. unsigned char  LSC_CONInvalid[]            = "Invalid File Name!! -- (NB: The 'CON' device is not permitted)";
  180. unsigned char  LSC_ConstRequ[]             = "Constant required when using the Contains operator";
  181. unsigned char  LSC_Convert2Lan[]           = "Converting '.TXT' to '.LAN'";
  182. unsigned char  LSC_Convert2Man[]           = "Converting '.TXT' to '.MAN'";
  183. unsigned char  LSC_CopiedEquals[]          = "Copied";
  184. unsigned char  LSC_Copyright[]             = "Copyright ";
  185. unsigned char  LSC_CorruptIndex[]          = "Bad Index File, Cannot Delete Record";
  186. unsigned char  LSC_CreatePrtDef[]          = "Create Defn File (ESC to Abort)";
  187. unsigned char  LSC_CreatingIdx[]           = "Creating Indexfile";
  188. unsigned char  LSC_CreatingUpdFile[]       = "Creating The Updated File";
  189. unsigned char  LSC_Criteria[]              = "Selection Criteria";
  190. unsigned char  LSC_CurrentMnu[]            = "Current Menu No.";
  191. unsigned char  LSC_CustFindHdr1[]          = "ID │ Printer Name";
  192. unsigned char  LSC_CustFindHdr2[]          = "ID │ Style ID and Description │ Printer Codes used to turn style ON                │ Printer Codes used to turn style OFF";
  193. unsigned char  LSC_DataFilePath[]          = "Path To Data Files";
  194. unsigned char  LSC_DataFinished[]          = "No More Data - Press any key to continue";
  195. unsigned char  LSC_DataPathMark[]          = "■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ Data Path ■■■■■■■■■■■■■■■■■■■■■■■■■■■";
  196. unsigned char  LSC_DataPathPMark[]         = "............................. Data Path ...........................";
  197. unsigned char  LSC_Date[]                  = "Date";
  198. unsigned char  LSC_DBaseFieldName[]        = "DBase Field Name";
  199. unsigned char  LSC_DBossFieldName[]        = "DataBoss Field Name";
  200. unsigned char  LSC_DefaultFuncs[]          = "AUTO   |SYSDATE";
  201. unsigned char  LSC_Definition[]            = "Definition";
  202. unsigned char  LSC_DeletedEquals[]         = "Deleted";
  203. unsigned char  LSC_Deleting[]              = "Deletion in progress...";
  204. unsigned char  LSC_DelLinkedRec[]          = "Confirm Deletion of This Record, (& Uniquely Linked Sub Records) [Y/Esc]";
  205. unsigned char  LSC_DelRecInUse[]           = "Record In Use By Another User - Delete Record Aborted";
  206. unsigned char  LSC_DeniedFiles[]           = "You may have been DENIED ACCESS because someone else has the files open";
  207. unsigned char  LSC_DeviceNotReady[]        = "Device not ready for OUTPUT -- Operation Aborted";
  208. unsigned char  LSC_DisallowWarn[]          = "NOTE : The first item in a menu may NOT be an 'I',(I=Ignore) item.";
  209. unsigned char  LSC_DiskFile[]              = "Disk File";
  210. unsigned char  LSC_DiskFull[]              = "Not enough space on disk to create file";
  211. unsigned char  LSC_DispSequence[]          = "Displayed in Sequence :";
  212. unsigned char  LSC_DosCmd[]                = "DOS Command";
  213. unsigned char  LSC_DosCmdPr[]              = "DOS Command         :";
  214. unsigned char  LSC_DosErrNo[]              = "DOS Error No.";
  215. unsigned char  LSC_DupFound[]              = "Duplicate key found for index number -";
  216. unsigned char  LSC_DupMenu[]               = "\x11─┘ = Select   Esc = Neither   F10 = Both   \x18\x19 Swap Choice   \x1A\x1B Pan Fields";
  217. unsigned char  LSC_DupsEquals[]            = "duplicates.";
  218. unsigned char  LSC_EditMenu[]              = "Edit Menu";
  219. unsigned char  LSC_EditRecInUse[]          = "Record In Use By Another User - Edit Record Aborted";
  220. unsigned char  LSC_EditSec[]               = "Item Edit Security";
  221. unsigned char  LSC_EditVideo[]             = "3 .. Edit Video";
  222. unsigned char  LSC_EndOfPage[]             = "  More Text On This Page  ";
  223. unsigned char  LSC_EnterAltKeys[]          = "Enter Alternate Keys";
  224. unsigned char  LSC_EnterANum[]             = "Field type is numeric - please enter a number";
  225. unsigned char  LSC_EnterBeginning[]        = "Please Enter The Beginning";
  226. unsigned char  LSC_EnterCmdParams[]        = "Enter Command Line Parameters";
  227. unsigned char  LSC_EnterConst[]            = "Constant required - please re-enter";
  228. unsigned char  LSC_EnterConstant[]         = "Enter : a Constant of the same type as the Field, or Field Name";
  229. unsigned char  LSC_EnterDateOption[]       = "Enter Date Option";
  230. unsigned char  LSC_EnterDefnName[]         = "Enter Definition Name";
  231. unsigned char  LSC_EnterDosCmd[]           = "Enter DOS Command";
  232. unsigned char  LSC_EnterEnding[]           = "Please Enter The Ending";
  233. unsigned char  LSC_EnterGoodWin[]          = "Please Enter Defined Window Number Between 1 and 255. (Inclusive)";
  234. unsigned char  LSC_EnterHelpWinNum[]       = "Enter An Help Window No. [1..255 inclusive]";
  235. unsigned char  LSC_EnterItemPrompt[]       = "Enter the Items' Prompt";
  236. unsigned char  LSC_EnterMenu2Print[]       = "Menu To Print [F2 - List]";
  237. unsigned char  LSC_EnterMenuFName[]        = "Enter a new menu file name. [No extension allowed]";
  238. unsigned char  LSC_EnterMenuName[]         = "   Type the name you want on the menu.  Enter(To Accept) or Esc(Go Back)    ";
  239. unsigned char  LSC_EnterMenuNum[]          = "Please Enter the Menu No.";
  240. unsigned char  LSC_EnterNewRec[]           = "Enter NEW Record [F2-List]";
  241. unsigned char  LSC_EnterOldRec[]           = "Enter OLD Record [F2-List]";
  242. unsigned char  LSC_EnterOrEsc[]            = "\x11─┘ for All, or ESC-Abort >";
  243. unsigned char  LSC_EnterOutDevice[]        = "Enter Output Device or FileName";
  244. unsigned char  LSC_EnterParams[]           = "Enter Any Parameters Now";
  245. unsigned char  LSC_EnterString[]           = "Enter String. [F2-Inbuilt Functions]";
  246. unsigned char  LSC_EnterTheKey[]           = "Enter Key";
  247. unsigned char  LSC_EnterTitle[]            = "Enter The Menu Title";
  248. unsigned char  LSC_EnterUnusedWin[]        = "Please Enter An Unused Window Number Between 1 and 255. (Inclusive)";
  249. unsigned char  LSC_EnterUPDName[]          = "Enter '.UPD' File Name";
  250. unsigned char  LSC_EnterYesOrNo[]          = "Please enter Y or N";
  251. unsigned char  LSC_EntryErr[]              = "Entry Error";
  252. unsigned char  LSC_ErrMissingFile[]        = "* Check if Any Files Are Missing and That The Disk Is not Full *";
  253. unsigned char  LSC_ErrNeededFiles[]        = "* ERROR - Cannot Open or Create All Files Needed By The System *";
  254. unsigned char  LSC_ErrorWith[]             = "Error with - ";
  255. unsigned char  LSC_Esc2Abort[]             = "Press Esc to Abort";
  256. unsigned char  LSC_Escape[]                = "Escape";
  257. unsigned char  LSC_EscOrAbort[]            = "  [ESC - Abort, Enter - Continue]";
  258. unsigned char  LSC_EscOrContinue[]         = "*** Press Esc to abort or Any other key to continue ... ***";
  259. unsigned char  LSC_EscOrEnter[]            = "Press <ESC> to Abort or <Enter> to Continue...";
  260. unsigned char  LSC_EscOrRetry[]            = "Esc To Abort Report, Any Other Key To Retry.";
  261. unsigned char  LSC_ExecSwapErr[]           = "SWAP ERROR, NOT ENOUGH FREE DISK SPACE ??";
  262. unsigned char  LSC_ExecTypePr[]            = "Execution Type :";
  263. unsigned char  LSC_ExistFileWarn[]         = "File already Exists -- Please re-enter";
  264. unsigned char  LSC_Exporting[]             = "Exporting Datafile";
  265. unsigned char  LSC_ExtAscii[]              = "Extended ASCII";
  266. unsigned char  LSC_FatalIO[]               = "Database I/O Fatal Error generated at  ";
  267. unsigned char  LSC_FieldMenu[]             = "PgUp, PgDn Scrolls Field Names - \x11─┘ and \x19 Accepts Displayed Field Name";
  268. unsigned char  LSC_File[]                  = "File";
  269. unsigned char  LSC_FileExists[]            = "File exists - press any key to re-edit or press F10 to overwrite";
  270. unsigned char  LSC_FileName[]              = "Filename";
  271. unsigned char  LSC_FindMenu[]              = "Esc = Abort, \x11─┘ = Accept Key, \x19\x18 = Change Search Key.";
  272. unsigned char  LSC_FindRec[]               = "Find Record";
  273. unsigned char  LSC_Finished[]              = "Process Completed - Press Any Key to Continue";
  274. unsigned char  LSC_FirstPrompt[]           = "  1st. Prompt, (as no Title) :";
  275. unsigned char  LSC_FixModule[]             = "Fix Module for ";
  276. unsigned char  LSC_FldPicMismatch[]        = "Field / Picture MISMATCH.  Field Len =";
  277. unsigned char  LSC_FNameReq[]              = "File name required - please re-enter";
  278. unsigned char  LSC_FullDateMark[]          = "■■■■■■■ Complete Date. ■■■■■■■";
  279. unsigned char  LSC_FullDatePMark[]         = "....... Complete Date.........";
  280. unsigned char  LSC_FunctionName[]          = "Function Name : ";
  281. unsigned char  LSC_GoBack[]                = "Go Back  ";
  282. unsigned char  LSC_HelpHeading[]           = "  -*- Context Sensitive Help -*-";
  283. unsigned char  LSC_HelpOrDone[]            = "Press F1-Help, 'ESC' When Done.";
  284. unsigned char  LSC_HelpWinNum[]            = "Help Window No";
  285. unsigned char  LSC_HideOrReveal[]          = "F9 to Hide/Reveal";
  286. unsigned char  LSC_HighlightPrompt[]       = "Highlight Color";
  287. unsigned char  LSC_HotKeysPr[]             = "Hot Keys :";
  288. unsigned char  LSC_IgnoreOnlyBlank[]       = "Only 'I',(I=Ignore) items may have a blank Prompt.";
  289. unsigned char  LSC_ImportingData[]         = "Importing Datafile";
  290. unsigned char  LSC_InActivePrompt[]        = "Inactive Prompt Color";
  291. unsigned char  LSC_InActiveVideo[]         = "2 .. Inactive Video";
  292. unsigned char  LSC_Indexing[]              = "*** Indexing File";
  293. unsigned char  LSC_IndexMenu[]             = "\x18\x19\x1A\x1B PgUp, PgDn, Tab - Swap Columns, Enter - Select, ESC - Abort";
  294. unsigned char  LSC_IndexMismatch[]         = "Index File mismatch, Press any Key";
  295. unsigned char  LSC_IndividualMenus[]       = "*****  INDIVIDUAL MENUS  *****";
  296. unsigned char  LSC_Initializing[]          = "*** Initializing, Please Wait ... ***";
  297. unsigned char  LSC_Insuf2Change[]          = ") is insufficient to change the item.";
  298. unsigned char  LSC_Insuf2Del[]             = ") is insufficient to delete all menu items.";
  299. unsigned char  LSC_InvalidParam[]          = "Invalid Parameter";
  300. unsigned char  LSC_IsPrinterReady[]        = "Is the I/O Device online and ready (Y/N)?";
  301. unsigned char  LSC_ItemA[]                 = "A -- Exit To DOS";
  302. unsigned char  LSC_ItemB[]                 = "B -- Shell To DOS";
  303. unsigned char  LSC_ItemC[]                 = "C -- DOS Commands";
  304. unsigned char  LSC_ItemD[]                 = "D -- Modify Menus";
  305. unsigned char  LSC_ItemRunSec[]            = "Item Runtime Security";
  306. unsigned char  LSC_KeyEquals[]             = "KEY =";
  307. unsigned char  LSC_KeyExists[]             = "Key Already Exists. Please Re-Edit";
  308. unsigned char  LSC_KeyLen[]                = "KeyLen";
  309. unsigned char  LSC_KeyOrEsc[]              = "** PRESS ANY KEY TO CONTINUE OR 'ESC' TO ABORT **";
  310. unsigned char  LSC_Keys2Use[]              = "Use the cursor keys to point to a program.  Enter(To Accept) or Esc(Go Back)";
  311. unsigned char  LSC_KeySeg1Len[]            = "KeySeg1Len";
  312. unsigned char  LSC_KeyStatus[]             = "Key Status >               <";
  313. unsigned char  LSC_KeyStatusMark[]         = "■■ KeyStatus ■■";
  314. unsigned char  LSC_KeyStatusPMark[]        = ".. KeyStatus ..";
  315. unsigned char  LSC_KeyType[]               = "KeyType";
  316. unsigned char  LSC_KeyUse[]                = "KeyUse";
  317. unsigned char  LSC_KeyValue[]              = "Key Value -";
  318. unsigned char  LSC_LineDraw[]              = "Line Draw";
  319. unsigned char  LSC_LinkedDelRecInUse[]     = "Linked Record In Use By Another User, 'R'etry or 'A'bort deletion [R/A]";
  320. unsigned char  LSC_LinkedRecInUse[]        = "Linked Record In Use By Another User... You MUST wait until it is free";
  321. unsigned char  LSC_ListMenu[]              = "Alt: B>rief Z>oom R>esize M>ove \x11─┘ = Select";
  322. unsigned char  LSC_ListOf[]                = "List of Records";
  323. unsigned char  LSC_Loading[]               = "Loading Program.  Please Wait...";
  324. unsigned char  LSC_LoadingManual[]         = "Loading ON-LINE Manual";
  325. unsigned char  LSC_LockedRecNo[]           = "Locked Rec=";
  326. unsigned char  LSC_LogAND[]                = "AND";
  327. unsigned char  LSC_LogOn2Update[]          = "You must have Logged On before you can update your password.";
  328. unsigned char  LSC_LogonOrEsc[]            = "Security Logon (Esc-Abort)";
  329. unsigned char  LSC_LogOperators[]          = "Enter either : A (And) or O (Or) or X (Xor)";
  330. unsigned char  LSC_LogOR[]                 = "OR";
  331. unsigned char  LSC_LogXOR[]                = "XOR";
  332. unsigned char  LSC_LostOwnMenu[]           = "Unable to locate the Menu Definitions Programs own definition";
  333. unsigned char  LSC_MainMenu[]              = "Main Menu";
  334. unsigned char  LSC_MakerMenu[]             = "  F1-Help, F2-Add, F3-Delete, F4-Change Name, F5-Change Title, Esc - ";
  335. unsigned char  LSC_ManualAvail[]           = "▌F1-Online Manual▐";
  336. unsigned char  LSC_ManualMainMenu[]        = "\x18\x19 PgUp, PgDn, Home, End, Ctrl Home, Ctrl End, P(n), C(n), Ctrl P, F1-Help";
  337. unsigned char  LSC_MaxRecsReached[]        = "Maximum Number of Records Reached, Cannot Add Any More ...";
  338. unsigned char  LSC_MayEnterParams[]        = "You may type in any parameters here, or press <Enter> if none are required.";
  339. unsigned char  LSC_Memo2Memo[]             = "Memo fields must be assigned to Memo fields";
  340. unsigned char  LSC_MemoEditMenu[]          = "Esc-Exit F10-Save&Exit F5-Clear Line (Memos : Ctrl+PgUp/PgDn-Prev/Next Field)";
  341. unsigned char  LSC_Menu2Print[]            = "Menu To Print [F2 - List]";
  342. unsigned char  LSC_MenuDateStamp[]         = "Menu Documentation - Dated";
  343. unsigned char  LSC_MenuDelWarn[]           = "You can only delete this name by deleting all names in its associated menu.";
  344. unsigned char  LSC_MenuDriven[]            = "*** You Must enter the system via a menu - Program Aborted ***";
  345. unsigned char  LSC_MenuFull[]              = "Sorry, menu full.  Delete an item then and add a submenu for more items.";
  346. unsigned char  LSC_MenuHeading[]           = "DOS & Applications Main Menu";
  347. unsigned char  LSC_MenuMissing[]           = "Could not find then internal menu file 'CONVTXT.MEN'.";
  348. unsigned char  LSC_MenuName[]              = "Menu Name";
  349. unsigned char  LSC_MenuNameList[]          = "Menu Name, [F2 - List]";
  350. unsigned char  LSC_MenuNamePr[]            = "Menu Name           :";
  351. unsigned char  LSC_MenuNumTitlePr[]        = "Menu No. & Title :";
  352. unsigned char  LSC_MenuOrProcNum[]         = "Menu or Procedure No.";
  353. unsigned char  LSC_MenuProcNumPr[]         = "Menu/Procedure No.  :";
  354. unsigned char  LSC_MenuTitle[]             = "                  Menu Title :";
  355. unsigned char  LSC_MessageMissing[]        = "corresponding error message not found in";
  356. unsigned char  LSC_MoveCopyBlock[]         = "Move/Copy Block";
  357. unsigned char  LSC_MoveMenu[]              = "Move Menu";
  358. unsigned char  LSC_MoveWindow[]            = "Move Window";
  359. unsigned char  LSC_Mismatch[]              = "Index File mismatch, Press any Key";
  360. unsigned char  LSC_More[]                  = "More";
  361. unsigned char  LSC_Move[]                  = "Move";
  362. unsigned char  LSC_MoveItem[]              = "Move Item";
  363. unsigned char  LSC_MustBeCharWarn[]        = "Field is the wrong type - it must be character";
  364. unsigned char  LSC_MustBeDateWarn[]        = "Field is the wrong type - it must be a date field";
  365. unsigned char  LSC_MustBeNumWarn[]         = "Field is the wrong type - it must be numeric";
  366. unsigned char  LSC_MustDefine[]            = "Please define (C)ompressed, and (N)ormal Print codes, then Select";
  367. unsigned char  LSC_MustLogOn[]             = "All Items Are Protected - You MUST Log On, (Alt-L), OR Quit, (Alt-X)";
  368. unsigned char  LSC_NoCreateTemp[]          = "Cannot Create Temporary File";
  369. unsigned char  LSC_NoCriteria[]            = "No selection criteria used";
  370. unsigned char  LSC_NoData[]                = "NO Data";
  371. unsigned char  LSC_NoExactMatch[]          = " Exact Match Not Found, Press any Key...";
  372. unsigned char  LSC_NoExistFileWarn[]       = "File does not Exist -- Please re-enter";
  373. unsigned char  LSC_NoFields[]              = "No fields selected - please re-select";
  374. unsigned char  LSC_NoHelp[]                = "No 'Context Sensitive Help' has been defined for this item.";
  375. unsigned char  LSC_NoMAtchingData[]        = "*** No data satisfies required conditions ***";
  376. unsigned char  LSC_NoMemForGlobals[]       = "Unable To Locate/Allocate The Requested Global Variable Space";
  377. unsigned char  LSC_NoMenu[]                = "No Menu Selected";
  378. unsigned char  LSC_NoMessageWarn[]         = "WARNING -- No Message, [as unable to load";
  379. unsigned char  LSC_NoMore[]                = "NO More";
  380. unsigned char  LSC_NoParentRec[]           = "Cannot Add Record, No Record Exists to Link Back to ...";
  381. unsigned char  LSC_NoPrevFieldName[]       = "No previous fieldname - leave blank";
  382. unsigned char  LSC_NotAvail[]              = "n/a";
  383. unsigned char  LSC_NotEnoughfields[]       = "Too few fields in foreign file - import abandoned";
  384. unsigned char  LSC_NotEnough4BTree[]       = "Not Enough Memory For B-Tree on Heap";
  385. unsigned char  LSC_NotInDate[]             = "String entered could not be contained in a date";
  386. unsigned char  LSC_NoTitle[]               = "Sorry, there is no Title to modify here.";
  387. unsigned char  LSC_NoTitleWarn[]           = "WARNING -- There is no Title to Justify !";
  388. unsigned char  LSC_NoXRefHere[]            = "Sorry, No Cross References on this Page";
  389. unsigned char  LSC_Number[]                = "Number";
  390. unsigned char  LSC_NumOperators[]          = "Enter One of : EQ NE GT LT GE LE CT";
  391. unsigned char  LSC_Off[]                   = "Off...........";
  392. unsigned char  LSC_On[]                    = "On............";
  393. unsigned char  LSC_OpCT[]                  = "contains";
  394. unsigned char  LSC_OpEQ[]                  = "is equal to";
  395. unsigned char  LSC_OperatorPr[]            = "Operator : ";
  396. unsigned char  LSC_OpGE[]                  = "is greater than or equal to";
  397. unsigned char  LSC_OpGT[]                  = "is greater than";
  398. unsigned char  LSC_OpLE[]                  = "is less than or equal to";
  399. unsigned char  LSC_OpLT[]                  = "is less than";
  400. unsigned char  LSC_OpNE[]                  = "is not equal to";
  401. unsigned char  LSC_OutOfRange[]            = "Out Of Range.";
  402. unsigned char  LSC_OutOfSpace[]            = "# ERROR #  Not Enough Space Left.";
  403. unsigned char  LSC_OutputFailure[]         = "OutPut Device Failure. [Abort/Retry]";
  404. unsigned char  LSC_OverwriteExisting[]     = "File Already Exists !!  Overwrite it [Y/N]";
  405. unsigned char  LSC_Page[]                  = "Page";
  406. unsigned char  LSC_PageNo[]                = "Page : ";
  407. unsigned char  LSC_ParentDir[]             = "[PARENT DIR]";
  408. unsigned char  LSC_ParentFile[]            = "Parent File=";
  409. unsigned char  LSC_PartialFixWarn[]        = "# WARNING #   Only COMPLETED files have been fixed !!!   # WARNING #";
  410. unsigned char  LSC_PasswordPr[]            = "Password : ";
  411. unsigned char  LSC_PaswordChoices[]        = "Enter  1-Update Password Database, 2-Update Master, [ESC to Abort]";
  412. unsigned char  LSC_PicIndicatesLen[]       = "Picture Indicates Len =";
  413. unsigned char  LSC_PickAllMenus[]          = "F1 - Pick All Menus";
  414. unsigned char  LSC_PreserveLink[]          = "Must preserve modified Link Field due to Adjust.  # EDIT RECORD ABORTED #";
  415. unsigned char  LSC_Press2Abort[]           = "Press Any Key to Abort During Processing.";
  416. unsigned char  LSC_PressAnyKey[]           = "Press Any Key to Continue";
  417. unsigned char  LSC_PrintByChapters[]       = "Print by Chapters";
  418. unsigned char  LSC_PrintByPages[]          = "Print by Pages";
  419. unsigned char  LSC_Printer[]               = "Printer";
  420. unsigned char  LSC_PrinterNotReady[]       = "Printer is Offline, Out Of Paper, or Disconnected - Retry/Ignore/Abort";
  421. unsigned char  LSC_PrinterReady[]          = "The printer is online and ready - Continue (Y/N)?";
  422. unsigned char  LSC_PrintHelp[]             = "Print the Context Sensitive Help for each item [Y/N]";
  423. unsigned char  LSC_PrintIndex[]            = "Print Index";
  424. unsigned char  LSC_Printing2Device[]       = "*** Printing Report To Device:";
  425. unsigned char  LSC_PrintOverview[]         = "Print Overview";
  426. unsigned char  LSC_ProcessedHdr[]          = "Data File    Processed        Status..........................................";
  427. unsigned char  LSC_Program2ExecPr[]        = "Program to Execute  :";
  428. unsigned char  LSC_ProgramToExec[]         = "Program to Execute, [F2 - List]";
  429. unsigned char  LSC_PromptPr[]              = "Prompt";
  430. unsigned char  LSC_PurgedEquals[]          = "Purged";
  431. unsigned char  LSC_Quit[]                  = "Quit     ";
  432. unsigned char  LSC_QuitDataBase[]          = "Quit Database (Y/N)?";
  433. unsigned char  LSC_QuitProgram[]           = "Quit Program [Y/N]";
  434. unsigned char  LSC_RecIsLocked[]           = "Record Currently Locked";
  435. unsigned char  LSC_Record[]                = "Record";
  436. unsigned char  LSC_Recs2Process[]          = "Records to Process =";
  437. unsigned char  LSC_RecsDone[]              = "Records Found :         Records Tried :";
  438. unsigned char  LSC_RecsProcessed[]         = "Records Processed  =";
  439. unsigned char  LSC_RecsUsed[]              = "- Number of Records Used :";
  440. unsigned char  LSC_ReportAborted[]         = "Report Aborted by System Operator";
  441. unsigned char  LSC_ReportAligned[]         = "Is Report Aligned Correctly?";
  442. unsigned char  LSC_Resize[]                = "Resize";
  443. unsigned char  LSC_Return2Main[]           = "Return to Main Menu (Y/N)";
  444. unsigned char  LSC_RewriteOrAppend[]       = "Datafile Exists - Re-Write File or Append to File (R,A) ?";
  445. unsigned char  LSC_SaveChanges[]           = "Save Changes ?";
  446. unsigned char  LSC_SaveMenuChanges[]       = "Save Changes to Menu System ?";
  447. unsigned char  LSC_SaveOrQuit[]            = "F10-Save,  Alt X-Quit";
  448. unsigned char  LSC_SavingWin[]             = "*****  Saving Window  *****";
  449. unsigned char  LSC_Screen[]                = "Screen";
  450. unsigned char  LSC_ScreenSaveActive[]      = "Screen Save Activated";
  451. unsigned char  LSC_ScreenSaveDelay[]       = "Delay Before Screen Save, 5..600 secs. [0 == Disable Screen Save]";
  452. unsigned char  LSC_ScreenSaveMsg[]         = "Screen Save Active.  Press Any Key To Continue.";
  453. unsigned char  LSC_SearchFor[]             = "Search For";
  454. unsigned char  LSC_Searching[]             = "Searching";
  455. unsigned char  LSC_SearchKey[]             = "Search Key :";
  456. unsigned char  LSC_SecurityPr[]            = "Security :";
  457. unsigned char  LSC_SelectedFlds[]          = "Selected Fields";
  458. unsigned char  LSC_SelectIndexMenu[]       = "PgUp, PgDn Scrolls Index Names - \x11─┘ and \x19 Accepts Displayed Choice";
  459. unsigned char  LSC_SelectMenuNum[]         = "Press <CR> to Select Menu Number";
  460. unsigned char  LSC_SelectUPDFirst[]        = "Please Select a '.UPD' file first";
  461. unsigned char  LSC_SetDrivePath[]          = "Set Drive/Path";
  462. unsigned char  LSC_SetupFileErr[]          = "ERROR in Parameter Setup File";
  463. unsigned char  LSC_ShortDateMark[]         = "■■ Date ■■";
  464. unsigned char  LSC_ShortDatePMark[]        = ".. Date ..";
  465. unsigned char  LSC_SimpleAscii[]           = "Simple ASCII";
  466. unsigned char  LSC_Snow[]                  = "SNOW";
  467. unsigned char  LSC_SomeoneDeleted[]        = "I'm Afraid Someone Else On The System Just Deleted Your Record";
  468. unsigned char  LSC_SpaceOnlyHoriz[]        = "WARNING -- Only Prompts in HORIZONTAL Menus can be spaced !!";
  469. unsigned char  LSC_StartVia[]              = "Please Start The Menu via";
  470. unsigned char  LSC_StatusAndDefaults[]     = "Current Status & Defaults";
  471. unsigned char  LSC_StatusInfo[]            = "Status Info";
  472. unsigned char  LSC_StatusRecLocked[]       = "Locked Linked Status Record Encountered... You MUST wait until it is free";
  473. unsigned char  LSC_StatusUnavail[]         = "Unable to Lock Status Record - Delete Record Aborted";
  474. unsigned char  LSC_StoreIn[]               = "Store procedure in ";
  475. unsigned char  LSC_SureDelName[]           = " Are you sure you want to delete this name ";
  476. unsigned char  LSC_SureDelSub[]            = " Are you sure you want to delete this Sub_menu ";
  477. unsigned char  LSC_SureFinChanges[]        = " Are you sure you have finished making changes to your menu ";
  478. unsigned char  LSC_SysopsOnly[]            = "Only System Administrators may update the Master Password.";
  479. unsigned char  LSC_Test[]                  = "This is a test";
  480. unsigned char  LSC_TheFile[]               = "File :";
  481. unsigned char  LSC_ThisFile[]              = "File=";
  482. unsigned char  LSC_TimeMark[]              = "■■ Time ■■■";
  483. unsigned char  LSC_TimePMark[]             = ".. Time ...";
  484. unsigned char  LSC_Title[]                 = "Title";
  485. unsigned char  LSC_ToFile[]                = "To File";
  486. unsigned char  LSC_ToFinish[]              = " \x11─┘ when finished.";
  487. unsigned char  LSC_ToggleCmdMenu[]         = "F2 to Toggle Command Menu";
  488. unsigned char  LSC_TogglePicked[]          = "F2 - Toggle Individual Picked";
  489. unsigned char  LSC_TracebackFailed[]       = "Record Trace Back Failed !!!";
  490. unsigned char  LSC_TryAgain[]              = "Try Again [Y/Esc]";
  491. unsigned char  LSC_TryNextPrev[]           = "Try Next/Prev ? [N/P/Esc]";
  492. unsigned char  LSC_TypeInName[]            = "Please type the name you want";
  493. unsigned char  LSC_Unable2Extend[]         = "Unable to Extend File Handle Count.  Press Any Key";
  494. unsigned char  LSC_Undef[]                 = "Undefined";
  495. unsigned char  LSC_UnexpectedLockedIndex[] = "Unexpected Locked Index ?? 'R'etry or 'A'bort Program [R/A] : ";
  496. unsigned char  LSC_UnknownCmd[]            = "Unknown Command In Line";
  497. unsigned char  LSC_UnpickAllMenus[]        = "F9 - UnPick All Menus";
  498. unsigned char  LSC_UnrecognisedErr[]       = "ERROR UNRECOGNIZED ??";
  499. unsigned char  LSC_UnsupportedVideo[]      = "Unsupported Video Mode, Not Enough Lines Available.  Needs :";
  500. unsigned char  LSC_UpdateIn[]              = "Update Data In";
  501. unsigned char  LSC_UpdatingData[]          = "Updating Data In File";
  502. unsigned char  LSC_UpdatingMaster[]        = "Updating Master Values...";
  503. unsigned char  LSC_UseArrows[]             = "Use the \x18 \x19 \x1A \x1B keys to move through the data";
  504. unsigned char  LSC_UseNoIndex[]            = "Use No Index";
  505. unsigned char  LSC_UsePgUpPgDn[]           = "Use PgUp & PgDn Keys";
  506. unsigned char  LSC_UsePr[]                 = "Use";
  507. unsigned char  LSC_UseTempIndex[]          = "Use Temp Index";
  508. unsigned char  LSC_ValidDateWarn[]         = "Field requires a valid date - please re-enter";
  509. unsigned char  LSC_VerifyPr[]              = "Verify   : ";
  510. unsigned char  LSC_WaitForPage[]           = "Insert New Page and Press a key when ready";
  511. unsigned char  LSC_WaitForReplace[]        = "Please Wait While The Item Is Replaced";
  512. unsigned char  LSC_WaitOnReturn[]          = "Wait Upon Return";
  513. unsigned char  LSC_WaitOnReturnPr[]        = "Wait Upon Return    :";
  514. unsigned char  LSC_WaitWhilePrinting[]     = "Printing Manual.  Please Wait...";
  515. unsigned char  LSC_Warning[]               = "Warning !!";
  516. unsigned char  LSC_Window[]                = "Window";
  517. unsigned char  LSC_WindowTitle[]           = "Window Title";
  518. unsigned char  LSC_WritePrtDef[]           = "Writing Printer Code File";
  519. unsigned char  LSC_WritingDBDefaults[]     = "Writing DataBoss Default File";
  520. unsigned char  LSC_WritingMenudefn[]       = "Writing Menu Action Definition File '";
  521. unsigned char  LSC_XeptOrEsc[]             = "Press F10 to Continue or ESC to Abort";
  522. unsigned char  LSC_YourLevel[]             = "Your access level, (";
  523. unsigned char  LSC_CreatingIndex[]         = "Creating Index File :";
  524. unsigned char  LSC_NotInC[]                = "Function Not Supported in C";
  525.